home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscDragViews / MiscViewsPalette.m < prev    next >
Encoding:
Text File  |  1995-04-12  |  409 b   |  22 lines

  1. // Copyright (C) 1995 Robert Todd Thomas
  2. // Use is governed by the MiscKit license
  3.  
  4. #import "MiscViews.subproj/MiscDragView.h"
  5. #import "MiscViewsPalette.h"
  6.  
  7.  
  8. @implementation  MiscViewsPalette
  9.  
  10. - finishInstantiate
  11. {
  12.     // Change the border type of a couple of the MiscIconWells on the palette
  13.     // to create a little variety.
  14.     [super finishInstantiate];
  15.     [well2 setBorderType: NX_GROOVE];
  16.  
  17.     return self;
  18. }
  19.  
  20. @end
  21.  
  22.